time.Time.wall (field)
30 uses
time (current package)
format.go#L531: if t.wall&hasMonotonic != 0 {
time.go#L141: wall uint64
time.go#L166: return int32(t.wall & nsecMask)
time.go#L171: if t.wall&hasMonotonic != 0 {
time.go#L172: return wallToInternal + int64(t.wall<<1>>(nsecShift+1))
time.go#L182: if t.wall&hasMonotonic != 0 {
time.go#L183: sec := int64(t.wall << 1 >> (nsecShift + 1))
time.go#L186: t.wall = t.wall&nsecMask | uint64(dsec)<<nsecShift | hasMonotonic
time.go#L216: if t.wall&hasMonotonic != 0 {
time.go#L218: t.wall &= nsecMask
time.go#L227: if t.wall&hasMonotonic == 0 {
time.go#L232: t.wall |= hasMonotonic | uint64(sec-minWall)<<nsecShift
time.go#L243: if t.wall&hasMonotonic == 0 {
time.go#L251: if t.wall&u.wall&hasMonotonic != 0 {
time.go#L261: if t.wall&u.wall&hasMonotonic != 0 {
time.go#L273: if t.wall&u.wall&hasMonotonic != 0 {
time.go#L296: if t.wall&u.wall&hasMonotonic != 0 {
time.go#L866: t.wall = t.wall&^nsecMask | uint64(nsec) // update nsec
time.go#L868: if t.wall&hasMonotonic != 0 {
time.go#L885: if t.wall&u.wall&hasMonotonic != 0 {
time.go#L913: if t.wall&hasMonotonic != 0 {
time.go#L926: if t.wall&hasMonotonic != 0 {
time.go#L1311: t.wall = uint64(nsec)
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |